home *** CD-ROM | disk | FTP | other *** search
/ CD World Haziran 1997 / CD World Haziran 1997.iso / Cesitlemeler / Directx 3.0 / dx3.exe / SDK / SAMPLES / DUEL / INPUT.H < prev    next >
Encoding:
C/C++ Source or Header  |  1996-08-28  |  661 b   |  28 lines

  1. /*==========================================================================
  2.  *
  3.  *  Copyright (C) 1995-1996 Microsoft Corporation. All Rights Reserved.
  4.  *
  5.  *  File:       input.h
  6.  *  Content:    input routines include file
  7.  *
  8.  *
  9.  ***************************************************************************/
  10.  
  11. #ifndef _INPUT_H
  12. #define _INPUT_H
  13.  
  14. #include <dinput.h>
  15. #include "duel.h"
  16.  
  17. BOOL            InitInput(void);
  18. BOOL CALLBACK   DI_EnumDevProc(LPDIDEVICEINSTANCE lpdidi, LPVOID lpv);
  19. void            DI_ReadKeys(void);
  20. void            CleanupInput(void);
  21. BOOL                    ReacquireInputDevices(void);
  22.  
  23.  
  24. #endif // _INPUT_H
  25.  
  26.  
  27.  
  28.